home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / flash_ch.swf / scripts / DefineSprite_6_energyBar / frame_1 / DoAction.as
Text File  |  2008-11-12  |  237b  |  16 lines

  1. function show(value, maxValue)
  2. {
  3.    _visible = true;
  4.    var frame = Math.round(value * 20 / maxValue);
  5.    if(frame == 0)
  6.    {
  7.       frame = 1;
  8.    }
  9.    gotoAndStop(frame);
  10. }
  11. function hide()
  12. {
  13.    _visible = false;
  14. }
  15. stop();
  16.